home *** CD-ROM | disk | FTP | other *** search
- /* rexx macro */
-
- options results /* enable return codes */
-
- if (left(address(), 6) ~= "GOLDED") then /* not started by GoldEd ? */
-
- address 'GOLDED.1'
-
- 'LOCK CURRENT RELEASE=4' /* lock GUI, gain access */
-
- if (RC ~= 0) then
-
- exit
-
- options failat 6 /* ignore warnings */
-
- signal on syntax /* ensure clean exit */
-
- /* ---------------------- INSERT YOUR CODE HERE ---------------------- */
-
- 'HELP STOP'
-
- 'UNLOCK'
-
- if show('P', 'SC_SCMSG') then do
-
- address 'SC_SCMSG'
-
- 'quit'
- end
-
- address 'COMMAND'
-
- 'avail >nil: flush'
-
- /* ------------------------- END OF YOUR CODE ------------------------ */
-
- exit
-
- SYNTAX:
-
- SAY "Error in line" SIGL ":" ERRORTEXT(RC)
-